home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / Hyperion / src / Imakefile < prev    next >
Makefile  |  1997-02-26  |  2KB  |  55 lines

  1. /**/# @(#)Imakefile    1.14 4/19/94
  2.  
  3. /**/# Note: Sun users should use the supplied Makefile.  But if you need
  4. /**/# to use imake, uncomment this line if you are compiling for Solaris 2.
  5. /**/# SOLARIS2 = -DSYSV
  6.  
  7. /**/# Set this to the manual section where you want to install workmandb.man
  8. DBMANSECTION = 5
  9.  
  10. /**/# And you shouldn't need to touch anything below this.
  11.  
  12.  
  13. #include <XView.tmpl>
  14. #include "WorkMan.tmpl"
  15.  
  16. #define HasInfoFiles YES
  17.  
  18. DEFINES = $(SOLARIS2) $(LOCALDEFS)
  19. DEPLIBS = XViewClientDepLibs
  20.  
  21. #ifdef SonyArchitecture
  22. LOCAL_LIBRARIES = XViewClientLibs -lCD
  23. #else
  24. #if defined(__bsdi__) || defined(i386Bsdi)
  25. /* LOCALDEFS=-DSOUNDBLASTER */ /* turns on some different volume code */
  26. LOCAL_LIBRARIES = XViewClientLibs -lcdrom -lrpc -lcompat
  27. CFLAGS += -fwritable-strings
  28. #else
  29. LOCAL_LIBRARIES = XViewClientLibs
  30. #endif
  31. #endif
  32.  
  33. INFOFILES = workman.info
  34.  
  35. SRCS = cdinfo.c database.c display.c setup.c ui_cdinfo.c plat_sun.c cdrom.c \
  36.     plat_hpux.c plat_ultrix.c plat_linux.c plat_news.c plat_bsd386.c \
  37.     plat_freebsd.c plat_osf1.c \
  38.     workman_stubs.c scsi.c drv_toshiba.c drv_sony.c plat_svr4.c
  39.  
  40. OBJS = cdinfo.o database.o display.o setup.o ui_cdinfo.o plat_sun.o cdrom.o \
  41.     plat_hpux.o plat_ultrix.o plat_linux.o plat_news.o plat_bsd386.o \
  42.     plat_freebsd.o plat_osf1.o \
  43.     workman_stubs.o scsi.o drv_toshiba.o drv_sony.o plat_svr4.o
  44.  
  45. ComplexProgramTarget(workman)
  46.  
  47. InstallSpecialManPage(workmandb,$(DBMANSECTION))
  48.  
  49. #ifdef UltrixArchitecture
  50. SpecialObjectRule(database.o,database.c,-Olimit 600);
  51. #endif
  52.  
  53. #include <XView.prog>
  54.  
  55.